projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d50e0bd
)
; Don't use remq (breaks bootstrapping)
author
Mattias Engdegård
<mattiase@acm.org>
Sun, 28 Nov 2021 18:06:33 +0000
(19:06 +0100)
committer
Mattias Engdegård
<mattiase@acm.org>
Sun, 28 Nov 2021 18:06:33 +0000
(19:06 +0100)
lisp/emacs-lisp/byte-run.el
patch
|
blob
|
history
diff --git
a/lisp/emacs-lisp/byte-run.el
b/lisp/emacs-lisp/byte-run.el
index ac3bb86a5972138b1eafa056a16553e83e909e58..2ce2efd2aa79118711561253b8eed3d6b1f94133 100644
(file)
--- a/
lisp/emacs-lisp/byte-run.el
+++ b/
lisp/emacs-lisp/byte-run.el
@@
-134,7
+134,7
@@
The return value of this function is not used."
:autoload-end
(eval-and-compile
(defun ,cfname (,@(car data) ,@args)
- (ignore ,@(
remq '&rest (remq '&optional args
)))
+ (ignore ,@(
delq '&rest (delq '&optional (copy-sequence args)
)))
,@(cdr data))))))))
(defalias 'byte-run--set-doc-string